summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatías Locatti <42481638+goldenx86@users.noreply.github.com>2022-11-10 22:36:39 +0100
committerGitHub <noreply@github.com>2022-11-10 22:36:39 +0100
commit0c176ce82833906ded6ef1973cbc201a14962a48 (patch)
treeaa102f43701e35bf02a6e0128c4cecf6ed42ef7d
parentAdd CPU thread count to log files (diff)
downloadyuzu-0c176ce82833906ded6ef1973cbc201a14962a48.tar
yuzu-0c176ce82833906ded6ef1973cbc201a14962a48.tar.gz
yuzu-0c176ce82833906ded6ef1973cbc201a14962a48.tar.bz2
yuzu-0c176ce82833906ded6ef1973cbc201a14962a48.tar.lz
yuzu-0c176ce82833906ded6ef1973cbc201a14962a48.tar.xz
yuzu-0c176ce82833906ded6ef1973cbc201a14962a48.tar.zst
yuzu-0c176ce82833906ded6ef1973cbc201a14962a48.zip
-rw-r--r--src/yuzu/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 1f238c913..693eaef02 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -362,7 +362,7 @@ GMainWindow::GMainWindow(std::unique_ptr<Config> config_, bool has_broken_vulkan
}
LOG_INFO(Frontend, "Host CPU: {}", cpu_string);
#endif
- LOG_INFO(Frontend, "Host CPU thread count: {}", processor_count);
+ LOG_INFO(Frontend, "Host CPU Threads: {}", processor_count);
LOG_INFO(Frontend, "Host OS: {}", PrettyProductName().toStdString());
LOG_INFO(Frontend, "Host RAM: {:.2f} GiB",
Common::GetMemInfo().TotalPhysicalMemory / f64{1_GiB});